home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 March / macformat-022.iso / Shareware City / Developers / NeoIntroTCL3.0 folder / TCL / Laughs / Includes / CLaughsDoc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-04-23  |  576 b   |  25 lines  |  [TEXT/KAHL]

  1. /****
  2.  * CLaughsDoc.cp
  3.  *
  4.  *    Declaration of a document class full of laughs.
  5.  *
  6.  *  Copyright © 1994 NeoLogic Systems.  All rights reserved.
  7.  *
  8.  ****/
  9. #pragma once            /* Include this file only once */
  10.  
  11. #include CNeoDocRootH
  12.  
  13. const OSType kLaughsFileType    = 'Ne6d';
  14.  
  15. class CLaughsDoc : public CNeoDocRoot {
  16. public:
  17.                         CLaughsDoc(CApplication *aSupervisor, const Boolean aPrintable, const Boolean aNewFile);
  18.  
  19.     virtual void        buildWindow(void);
  20.     virtual void        NewFile(void);
  21.     virtual void        OpenFile(SFReply *macSFReply);
  22.  
  23.     void                createObjects(void);
  24.     void                printOut(void);
  25. };